home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / cryptsetup.postinst < prev    next >
Text File  |  2009-10-14  |  2KB  |  72 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. # summary of how this script can be called:
  6. #        * <postinst> `configure' <most-recently-configured-version>
  7. #        * <old-postinst> `abort-upgrade' <new version>
  8. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  9. #          <new-version>
  10. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  11. #          <failed-install-package> <version> `removing'
  12. #          <conflicting-package> <version>
  13.  
  14. case "$1" in
  15.     configure)
  16.     if [ -x /usr/sbin/update-initramfs ]; then
  17.         update-initramfs -u
  18.     fi
  19.  
  20.     # Do a number of checks on the currently installed crypttab
  21.     egrep -v "^[[:space:]]*(#|$)" /etc/crypttab | while read dst src key opts; do
  22.         if [ -z "$dst" ]; then
  23.             continue
  24.         elif [ -z "$src" ] || [ -z "$key" ] || [ -z "$opts" ]; then
  25.             # All fields must be present
  26.             echo "WARNING: $dst in /etc/crypttab is missing some arguments, see man cryptab(5)." >&2
  27.             continue
  28.         else
  29.             # Some options are deprecated
  30.             while [ -n "$opts" ]; do
  31.                 opt=$(echo $opts | sed "s/,.*//")
  32.                 opts=${opts##$opt}
  33.                 opts=${opts##,}
  34.  
  35.                 if [ "$opt" = "ssl" ]; then
  36.                     echo "WARNING: $dst in /etc/crypttab uses the deprecated ssl option, see man crypttab(5)." >&2
  37.                 elif [ "$opt" = "gpg" ]; then
  38.                     echo "WARNING: $dst in /etc/crypttab uses the deprecated gpg option, see man crypttab(5)." >&2
  39.                 fi
  40.             done
  41.         fi
  42.  
  43.     done
  44.     ;;
  45.  
  46.     abort-upgrade|abort-remove|abort-deconfigure)
  47.  
  48.     ;;
  49.  
  50.     *)
  51.         echo "postinst called with unknown argument \`$1'" >&2
  52.         exit 1
  53.     ;;
  54. esac
  55.  
  56. # dh_installdeb will replace this with shell code automatically
  57. # generated by other debhelper scripts.
  58.  
  59. # Automatically added by dh_installinit
  60. if [ -x "/etc/init.d/cryptdisks-early" ]; then
  61.     update-rc.d cryptdisks-early start 26 S . start 59 0 6 . >/dev/null || exit $?
  62. fi
  63. # End automatically added section
  64. # Automatically added by dh_installinit
  65. if [ -x "/etc/init.d/cryptdisks" ]; then
  66.     update-rc.d cryptdisks start 28 S . start 48 0 6 . >/dev/null || exit $?
  67. fi
  68. # End automatically added section
  69.  
  70.  
  71. exit 0
  72.